home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / shapes / box.vx < prev    next >
Text File  |  1979-12-31  |  535b  |  31 lines

  1. /* --------------------------------- box.vx --------------------------------- */
  2.  
  3. /*
  4.  * This is part of the flight simulator 'fly8'.
  5.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  6.  *
  7.  */
  8.  
  9. /*
  10.  * Object shape: O_BOX.
  11.  *
  12.  */
  13.  
  14. #include "shape.h"
  15.  
  16. #define    S    10
  17. static VERTEX vx_box[] = {
  18.     {{0, 0, 0}, V_MOVE},
  19.     {{0, S, 0}, V_DRAW},
  20.     {{S, S, 0}, V_DRAW},
  21.     {{S, 0, 0}, V_DRAW},
  22.     {{0, 0, 0}, V_DRAW},
  23.     {{0, 0, S}, V_DRAW},
  24.     {{0, S, S}, V_DRAW},
  25.     {{S, S, S}, V_DRAW},
  26.     {{S, 0, S}, V_DRAW},
  27.     {{0, 0, S}, V_DRAW},
  28.  
  29.     {{0, 0, 0}, V_EOF}
  30. };
  31.